All Questions
Tagged with asynchronous-programmingarchitectural-patterns
4 questions
3votes
3answers
6kviews
Synchronous vs Asynchronous Event Driven Architecture
I have been searching extensively about the difference between synchronous and asynchronous patterns and how this relates to event driven architecture. On its face it is quite obvious, I simply ...
1vote
1answer
324views
What is the name of this kind of (intra-process, inter-thread, queue-based) event system?
Context Espressif's embedded development libraries for the ESP32 microcontroller contain an event system based on FreeRTOS. The event system handles connectivity, interrupts and other IO activity, but ...
0votes
1answer
262views
Should repositories always return Rx Single or Observable?
Let' assume we have an IFiltersRepository repository that provides data about a list of "filters" that are used on the search screen of an app (filter by color, by price etc). The repository has the ...
22votes
1answer
14kviews
Learning Asynchronous programming [closed]
Asynchronous non-blocking event driven programming seems to be all the rage. I have a basic conceptual understanding of what this all means. However what I'm not sure is when and where my code can ...